home *** CD-ROM | disk | other *** search
/ SGI Hot Mix 8 / Hot Mix 8.iso / .all / demos / ICS / LaunchIt (.txt) < prev    next >
Text File  |  1994-06-22  |  260b  |  15 lines

  1. #!/bin/csh
  2. # Launch the application.
  3.  
  4.  
  5. set OS_version = `uname -r | grep '4\.0\.5'`
  6.  
  7. if ( $OS_version == '4.0.5H' ) then 
  8.         /$HOTMIXDIR/bin/no_4x_support
  9.     exit
  10. else 
  11.     # Need to change the directory first
  12.     cd $HOTMIXDIR/demos/ICS/builder
  13.     ./startbx
  14. endif
  15.